home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / id3tag.h < prev    next >
C/C++ Source or Header  |  2000-01-01  |  316b  |  16 lines

  1. #ifndef ID3TAG_H_INCLUDED
  2. #define ID3TAG_H_INCLUDED
  3. #include "lame.h"
  4.  
  5. void id3_inittag(ID3TAGDATA *tag);
  6. void id3_buildtag(ID3TAGDATA *tag);
  7. int id3_writetag(char* filename, ID3TAGDATA *tag);
  8.  
  9.  
  10. /*
  11.  * Array of all possible music genre. Grabbed from id3ed
  12.  */
  13. extern int genre_last;
  14. extern char *genre_list[];
  15. #endif
  16.